home *** CD-ROM | disk | FTP | other *** search
/ Aminet 31 / Aminet 31 (1999)(Schatztruhe)[!][Jun 1999].iso / Aminet / dev / c / vbccppcsrc.lha / vbcc / machines / amigappc / include / setjmp.h < prev    next >
C/C++ Source or Header  |  1999-03-07  |  153b  |  13 lines

  1. /* setjmp.h - PowerPC */
  2.  
  3. #ifndef __SETJMP_H
  4. #define __SETJMP_H 1
  5.  
  6. typedef int jmp_buf[24];
  7.  
  8. int setjmp (jmp_buf);
  9. void longjmp (jmp_buf, int);
  10.  
  11. #endif
  12.  
  13.